home *** CD-ROM | disk | FTP | other *** search
- package symantec.itools.db.pro;
-
- import java.util.Vector;
- import symantec.itools.db.net.Entity;
- import symjava.sql.SQLException;
-
- public class RelationViewMetaData {
- private RelationView _relView;
- private Entity _entity;
-
- RelationViewMetaData(RelationView relView, Entity entity) {
- this._relView = relView;
- this._entity = entity;
- }
-
- public Vector getColumnList() throws SQLException {
- return this._entity.getColumnList();
- }
-
- public int getColumnCount() throws SQLException {
- return this._entity.getColumnCount();
- }
-
- public boolean isAutoIncrement(int column) throws SQLException {
- return this._entity.isAutoIncrement(column);
- }
-
- public boolean isCaseSensitive(int column) throws SQLException {
- return this._entity.isCaseSensitive(column);
- }
-
- public boolean isSearchable(int column) throws SQLException {
- return this._entity.isSearchable(column);
- }
-
- public boolean isCurrency(int column) throws SQLException {
- return this._entity.isCurrency(column);
- }
-
- public int isNullable(int column) throws SQLException {
- return this._entity.isNullable(column);
- }
-
- public boolean isSigned(int column) throws SQLException {
- return this._entity.isSigned(column);
- }
-
- public int getColumnDisplaySize(int column) throws SQLException {
- return this._entity.getColumnDisplaySize(column);
- }
-
- public String getColumnLabel(int column) throws SQLException {
- return this._entity.getColumnLabel(column);
- }
-
- public String getColumnName(int column) throws SQLException {
- return this._entity.getColumnName(column);
- }
-
- public String getSchemaName(int column) throws SQLException {
- return this._entity.getSchemaName(column);
- }
-
- public int getPrecision(int column) throws SQLException {
- return this._entity.getPrecision(column);
- }
-
- public int getScale(int column) throws SQLException {
- return this._entity.getScale(column);
- }
-
- public String getTableName(int column) throws SQLException {
- return this._entity.getTableName(column);
- }
-
- public String getCatalogName(int column) throws SQLException {
- return this._entity.getCatalogName(column);
- }
-
- public int getColumnType(int column) throws SQLException {
- return this._entity.getColumnType(column);
- }
-
- public String getColumnTypeName(int column) throws SQLException {
- return this._entity.getColumnTypeName(column);
- }
-
- public boolean isReadOnly(int column) throws SQLException {
- return this._entity.isReadOnly(column);
- }
-
- public boolean isWritable(int column) throws SQLException {
- return this._entity.isWritable(column);
- }
-
- public boolean isDefinitelyWritable(int column) throws SQLException {
- return this._entity.isDefinitelyWritable(column);
- }
- }
-